Requirement: If today is within 30 days of the employee's date of hire, do not show.
This script in the JScript Visible will not show the questions if today is within 30 days of the employee's date of hire. Useful for plans that do not require EOI if the employee enrolls as a new hire.
var today = DateTime.Today;
var newHire;
var hireDate = Event.Employee.DateOfHire;
var compareDate = hireDate.AddDays(30);
if (compareDate > today)
newHire = true;
else
newHire = false;
Event.Value = !newHire;